home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-28 | 965 b | 32 lines | [TEXT/KAHL] |
- /********************************************************************************
- Copyright © N. Jonas Englund, 1993. All Rights Reserved.
- ********************************************************************************
-
- PROJECT: clut_fade.π
-
- FILE: fade.h
-
- PURPOSE: constants, type definitions and prototypes
-
- ********************************************************************************/
-
- //================================= DEFINES =====================================
-
- #define kMaxByte 0x100 // 256 colors
-
- //================================= TYPEDEFS ====================================
-
- typedef struct FadeValues
- {
- short reds[kMaxByte];
- short greens[kMaxByte];
- short blues[kMaxByte];
- }
- FadeValues;
-
- //================================= FUNCTIONS ===================================
-
- pascal void FadeScreen(short, Boolean, RGBColor fadeTo);
-
- //=================================== EOF =======================================
-